コード例 #1
0
        public static MonsterProperties ReadMonsterProperties(BinaryReader reader)
        {
            var monsterProperties = new MonsterProperties();

            monsterProperties.Index = reader.ReadInt32();
            return(monsterProperties);
        }
コード例 #2
0
 public static void Write(BinaryWriter writer, ref MonsterProperties monsterProperties)
 {
     writer.Write(monsterProperties.Index);
 }