summaryrefslogtreecommitdiff
path: root/scripts/actors/actions/Action.cs
blob: bb5f6f142f01f6f6866b78ca5676b0eaecd120d2 (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 MapData Map_Data {
		get => actor.Map_Data;
	}
}