9 lines
138 B
C#
9 lines
138 B
C#
using Godot;
|
|
using System;
|
|
|
|
public partial class MapCell : Node2D
|
|
{
|
|
public Vector2I _address;
|
|
public MapCellOccupant _occupant;
|
|
}
|