コード例 #1
0
ファイル: CityNotify.cs プロジェクト: yuripourre-forks/FreeSO
 public override void Deserialize(IoBuffer input, ISerializationContext context)
 {
     Mode    = input.GetEnum <CityNotifyType>();
     Value   = input.GetUInt32();
     Message = input.GetPascalVLCString();
 }
コード例 #2
0
ファイル: CityNotify.cs プロジェクト: yuripourre-forks/FreeSO
 public CityNotify(CityNotifyType mode)
 {
     Mode = mode;
 }