shmodot/scripts/orbits/Planet.cs

19 lines
245 B
C#
Raw Normal View History

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