// Copyright 2018 RED Software, LLC. All Rights Reserved. using IgniteEngine.IO; namespace IgniteEngine.Definitions.SHN { /// /// Class that defines the file FaceInfo.shn. /// [Definition] public class FaceInfo { /// /// The face's ID. /// [Identity] public byte ID { get; private set; } /// /// The face's grade. /// public byte Grade { get; private set; } } }