mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
16 lines
283 B
C++
16 lines
283 B
C++
#pragma once
|
|
#include <System/System.h>
|
|
|
|
using namespace System;
|
|
namespace KinematicCharacterController {
|
|
namespace Walkthrough {
|
|
namespace NetworkingExample {
|
|
enum class FrameworkNetworkMessageID{
|
|
PlayerCommands = -1000,
|
|
GlobalState,
|
|
CommandRequest
|
|
};
|
|
}
|
|
}
|
|
}
|