summaryrefslogtreecommitdiff
path: root/scripts/actors/actions/Action.cs
blob: 76ae5d566f1c5447e87101fca65b13b9c3cc4306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using Godot;
using System;
using System.Data;

public abstract partial class Action : RefCounted {
	protected Actor actor;

	public Action(Actor actor) {
		this.actor = actor;
	}

	public abstract void Perform();

	protected DungeonLevel Map {
		get => actor.Map;
	}
}