16 lines
326 B
C#
16 lines
326 B
C#
|
|
using Babushka.scripts.CSharp.GameEntity.Entities;
|
||
|
|
using Godot;
|
||
|
|
|
||
|
|
namespace Babushka.scripts.CSharp.GameEntity.EntityNodes;
|
||
|
|
|
||
|
|
public partial class TrashEntityNode : Node2D
|
||
|
|
{
|
||
|
|
private TrashEntity _trashEntity;
|
||
|
|
|
||
|
|
public void Initialize(TrashEntity trashEntity)
|
||
|
|
{
|
||
|
|
_trashEntity = trashEntity;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|