cobek/commands.h
2022-03-24 15:24:46 +03:00

16 lines
281 B
C

#pragma once
#include "../kerep/Autoarr/Autoarr.h"
typedef enum CommandId{
} __attribute__((__packed__)) CommandId;
struct CommandStruct;
typedef CommandStruct Command;
struct CommandStruct{
Command* next;
Command* prev;
CommandId id;
}
Autoarr_declare(Comand);