shmodot/scripts/orbits/IMassive.cs

8 lines
83 B
C#
Raw Normal View History

2022-08-31 22:18:47 +02:00
using Godot;
using System;
public interface IMassive
{
2022-09-05 23:13:53 +02:00
double Mass { get; }
2022-08-31 22:18:47 +02:00
}