8 lines
83 B
C#
8 lines
83 B
C#
using Godot;
|
|
using System;
|
|
|
|
public interface IMassive
|
|
{
|
|
double Mass { get; }
|
|
}
|