mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
12 lines
190 B
C++
12 lines
190 B
C++
#pragma once
|
|
|
|
namespace RBX
|
|
{
|
|
|
|
typedef enum CharacterActionType
|
|
{ NO_CHARACTER_ACTION = 0,
|
|
REMOTE_CHARACTER_ACTION,
|
|
STEER_CHARACTER_ACTION } CharacterActionType;
|
|
}
|
|
|