2element
This commit is contained in:
parent
2b52b10a72
commit
c2d070cd8d
2 changed files with 28 additions and 0 deletions
12
ZoFo/GameCore/GameObjects/IPlayerWeaponAttack.cs
Normal file
12
ZoFo/GameCore/GameObjects/IPlayerWeaponAttack.cs
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ZoFo.GameCore.GameObjects
|
||||||
|
{
|
||||||
|
internal interface IPlayerWeaponAttack
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
16
ZoFo/GameCore/GameObjects/LootData.cs
Normal file
16
ZoFo/GameCore/GameObjects/LootData.cs
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace ZoFo.GameCore.GameObjects
|
||||||
|
{
|
||||||
|
internal class LootData
|
||||||
|
{
|
||||||
|
public void AddLoot(object lootObject, int quantity)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue