Merge branch 'gameObjects' of github.com:progtime-net/ZoFo into gameObjects
This commit is contained in:
commit
f363aa873a
5 changed files with 69 additions and 0 deletions
13
ZoFo/GameCore/GameObjects/GunAttack.cs
Normal file
13
ZoFo/GameCore/GameObjects/GunAttack.cs
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ZoFo.GameCore.GameObjects
|
||||||
|
{
|
||||||
|
internal class GunAttack:IPlayerWeaponAttack
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
13
ZoFo/GameCore/GameObjects/HandAttack.cs
Normal file
13
ZoFo/GameCore/GameObjects/HandAttack.cs
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ZoFo.GameCore.GameObjects
|
||||||
|
{
|
||||||
|
internal class HandAttack:IPlayerWeaponAttack
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
13
ZoFo/GameCore/GameObjects/IPlayerWeaponAttack.cs
Normal file
13
ZoFo/GameCore/GameObjects/IPlayerWeaponAttack.cs
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ZoFo.GameCore.GameObjects
|
||||||
|
{
|
||||||
|
internal interface IPlayerWeaponAttack
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
17
ZoFo/GameCore/GameObjects/LootData.cs
Normal file
17
ZoFo/GameCore/GameObjects/LootData.cs
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ZoFo.GameCore.GameObjects
|
||||||
|
{
|
||||||
|
internal class LootData
|
||||||
|
{
|
||||||
|
public Dictionary<string, int> loots;
|
||||||
|
public void AddLoot(object lootObject, int quantity)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
13
ZoFo/GameCore/GameObjects/SwordAttack.cs
Normal file
13
ZoFo/GameCore/GameObjects/SwordAttack.cs
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ZoFo.GameCore.GameObjects
|
||||||
|
{
|
||||||
|
internal class SwordAttack:IPlayerWeaponAttack
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue