addClassesFromIPlayer
This commit is contained in:
parent
c2d070cd8d
commit
4e9c54906b
5 changed files with 41 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
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -8,5 +8,6 @@ namespace ZoFo.GameCore.GameObjects
|
||||||
{
|
{
|
||||||
internal interface IPlayerWeaponAttack
|
internal interface IPlayerWeaponAttack
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@ namespace ZoFo.GameCore.GameObjects
|
||||||
{
|
{
|
||||||
internal class LootData
|
internal class LootData
|
||||||
{
|
{
|
||||||
|
public Dictionary<string, int> loots;
|
||||||
public void AddLoot(object lootObject, int quantity)
|
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