namespace Funique
{
//Order is important
///
/// Client format
/// Order is important
/// ------------------------------------------------
/// 用戶格式
/// 順序重要
///
public enum PlayerScheme
{
///
/// Client is theater mode
/// Server have fully control over the clients
/// ------------------------------------------------
/// 客戶端是劇院模式
/// 伺服器有全部的控制
///
Theater,
///
/// Client can play whatever they want
/// ------------------------------------------------
/// 客戶端可以有自主權
///
StandAlone,
///
/// Hmmmmm, I have no idea what is this
/// Maybe server can control some part of it?
/// ------------------------------------------------
/// 啥
///
Exhibition
}
}