14 lines
205 B
C#
14 lines
205 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public class Circle
|
||
|
{
|
||
|
public Vector2 center = Vector2.Zero;
|
||
|
public float radius = 1;
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|