19 lines
235 B
C#
19 lines
235 B
C#
using Godot;
|
|
using System;
|
|
|
|
public class Planet : Node
|
|
{
|
|
[Export]
|
|
public float Mass { get; set; }
|
|
|
|
public override void _Ready()
|
|
{
|
|
|
|
}
|
|
|
|
// public override void _Process(float delta)
|
|
// {
|
|
//
|
|
// }
|
|
}
|