shmodot/scripts/orbits/Planet.cs

19 lines
245 B
C#
Raw Normal View History

2022-08-31 21:18:47 +01:00
using Godot;
using System;
2022-09-04 11:35:13 +01:00
public class Planet : Node, IMassive
2022-08-31 21:18:47 +01:00
{
[Export]
public float Mass { get; set; }
public override void _Ready()
{
}
// public override void _Process(float delta)
// {
//
// }
}