19 lines
267 B
C#
19 lines
267 B
C#
|
using Godot;
|
||
|
|
||
|
namespace SpaceCapture;
|
||
|
|
||
|
[GlobalClass]
|
||
|
public partial class Planet : Resource
|
||
|
{
|
||
|
public enum PlanetType
|
||
|
{
|
||
|
Terrestrial,
|
||
|
}
|
||
|
|
||
|
[Export]
|
||
|
public Vector2 Location { get; set; }
|
||
|
|
||
|
[Export]
|
||
|
public PlanetType Type { get; set; }
|
||
|
}
|