18 lines
267 B
C#
18 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; }
|
|
}
|