コード例 #1
0
        public static OpenEditorCallback OpenByteFile(
            Format graphicsFormat)
        {
            return(path =>
            {
                var parent = new SharedListParentEditor(
                    path,
                    File.ReadAllBytes(path));

                return new GfxEditor(parent)
                {
                    GraphicsFormat = graphicsFormat,
                };
            });
        }
コード例 #2
0
 public ChrTileEditor(SharedListParentEditor parent)
     : base(parent)
 {
 }
コード例 #3
0
 public GfxEditor(SharedListParentEditor parent)
     : base(parent)
 {
 }