Add wood dummy
This commit is contained in:
parent
19a7676b1d
commit
ec550ea093
2 changed files with 15 additions and 1 deletions
|
@ -13,6 +13,6 @@ public class Collectable : Interactable
|
|||
|
||||
public override void OnInteraction(object sender, CollisionComponent e)
|
||||
{
|
||||
AppManager.Instance.server.AddData(new UpdateInteraction(Id));
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
using System.Collections.Generic;
|
||||
using Microsoft.Xna.Framework;
|
||||
using ZoFo.GameCore.Graphics;
|
||||
|
||||
namespace ZoFo.GameCore.GameObjects.Entities.Interactables.Collectables;
|
||||
|
||||
public class Wood : Collectable
|
||||
{
|
||||
public override GraphicsComponent graphicsComponent { get; } = new(new List<string> { "Wood" }, "Wood");
|
||||
|
||||
public Wood(Vector2 position) : base(position)
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue