shmodot/scripts/orbits/IMassive.cs

8 lines
83 B
C#
Raw Normal View History

2022-08-31 21:18:47 +01:00
using Godot;
using System;
public interface IMassive
{
2022-09-07 00:49:57 +01:00
double Mass { get; }
2022-08-31 21:18:47 +01:00
}