This commit is contained in:
unknown 2024-08-15 01:07:51 +03:00
parent 2b52b10a72
commit c2d070cd8d
2 changed files with 28 additions and 0 deletions

View 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
{
}
}

View 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)
{
}
}
}