mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 14:55:38 +01:00
13 lines
234 B
C++
13 lines
234 B
C++
#pragma once
|
|
|
|
namespace ECS
|
|
{
|
|
// TODO: DAG with constraints. This will work for now.
|
|
enum class SystemPriority : int
|
|
{
|
|
Senses = 0,
|
|
BehaviorProcessor = 1,
|
|
MoveEnactor = 2,
|
|
Input = 3,
|
|
};
|
|
} |