namespace MfGames.Nitride.Contents; /// /// An interface to indicates an object can be converted into a binary /// content directly. /// public interface IBinaryContentConvertable { /// /// Convert the given object into a binary content. /// /// IBinaryContent ToBinaryContent(); }