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