shmodot/scripts/orbits/IMassive.cs

8 lines
83 B
C#
Raw Permalink Normal View History

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