13 lines
263 B
C#
13 lines
263 B
C#
public partial class Item : GameObject
|
|
{
|
|
public Item(string name, GameObject parent)
|
|
: base(name, new CoordinateVector(0, 0), new CoordinateVector(0, 0), parent)
|
|
{
|
|
|
|
}
|
|
|
|
public override void Simulate()
|
|
{
|
|
base.Simulate();
|
|
}
|
|
}
|