summaryrefslogtreecommitdiff
path: root/Scripts/Game/Command.cs
blob: 07d7c84927b3b9f446b39c431910b417efc9f862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using Godot;

namespace Texty.Scripts.Game
{
    public enum CommandType
    {
        Look
    }

    public class Command : Object
    {
        public Command()
        {
        }

        public Command(CommandType type, string[] arguments)
        {
            RawArguments = arguments;
            Type = type;
        }

        public string[] RawArguments { get; }
        public CommandType Type { get; }
    }
}