mirror of
https://github.com/Phantop/LADXHD.git
synced 2024-11-01 12:24:16 +00:00
9 lines
174 B
C#
9 lines
174 B
C#
|
namespace ProjectZ.InGame.GameObjects.Base.Components
|
|||
|
{
|
|||
|
public class Component
|
|||
|
{
|
|||
|
public GameObject Owner;
|
|||
|
public static int Index;
|
|||
|
}
|
|||
|
}
|