mirror of
https://github.com/alee14-projects/Unicity.git
synced 2025-01-22 07:53:19 -05:00
27 lines
473 B
C#
27 lines
473 B
C#
namespace Unicity.Engine
|
|
{
|
|
public class GameObject
|
|
{
|
|
public float X = 0;
|
|
public float Y = 0;
|
|
public float Z = 0;
|
|
|
|
public float ScaleX = 0;
|
|
public float ScaleY = 0;
|
|
public float ScaleZ = 0;
|
|
|
|
public Model Model = null;
|
|
|
|
public GameObject()
|
|
{
|
|
|
|
}
|
|
|
|
public GameObject(float x, float y, float z)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
Z = z;
|
|
}
|
|
}
|
|
}
|