addClassesFromIPlayer

This commit is contained in:
unknown 2024-08-15 01:27:00 +03:00
parent c2d070cd8d
commit 4e9c54906b
5 changed files with 41 additions and 0 deletions

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

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

View file

@ -8,5 +8,6 @@ namespace ZoFo.GameCore.GameObjects
{
internal interface IPlayerWeaponAttack
{
}
}

View file

@ -8,6 +8,7 @@ namespace ZoFo.GameCore.GameObjects
{
internal class LootData
{
public Dictionary<string, int> loots;
public void AddLoot(object lootObject, int quantity)
{

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