コード例 #1
0
ファイル: ContentFolders.cs プロジェクト: rlugojr/fragengine
        public ContentFolders( Editor editor ) {
            AddedFolders = new List<string>();
            RemovedFolders = new List<string>();
            
            InitializeComponent();

            Load += OnLoad;

            _editor = editor;
        }
コード例 #2
0
ファイル: GameAssemblies.cs プロジェクト: rlugojr/fragengine
        public GameAssemblies( Editor editor ) {
            AddedEntities = new List<Type>();
            RemovedEntities = new List<Type>();

            InitializeComponent();

            Load += OnLoad;

            _editor = editor;
        }