17 lines
321 B
C#
17 lines
321 B
C#
using Godot;
|
|
using System;
|
|
|
|
public partial class MapCellOccupant : HoverableNode
|
|
{
|
|
public Vector2I _address;
|
|
public MapCell _cell;
|
|
public Disposition _disposition = Disposition.NONE;
|
|
public enum Disposition
|
|
{
|
|
NONE = -99,
|
|
FRIENDLY = 1,
|
|
NEUTRAL = 0,
|
|
HOSTILE = -1
|
|
}
|
|
}
|