ソースを参照

Not a good idea

David Catuhe 5 年 前
コミット
76141a214c
1 ファイル変更0 行追加18 行削除
  1. 0 18
      src/Materials/Node/nodeMaterialBlockGroup.ts

+ 0 - 18
src/Materials/Node/nodeMaterialBlockGroup.ts

@@ -1,18 +0,0 @@
-import { NodeMaterialBlock } from './nodeMaterialBlock';
-
-/**
- * Defines a class that will hold NodeMaterialBlocks
- */
-export class NodeMaterialBlockGroup {
-    public blocks: NodeMaterialBlock[] = [];
-
-    /**
-     * Creates a new block group
-     * @param name defines the name of the group
-     */
-    public constructor(
-        /** Defines the name of the group */
-        public name: string
-    ) {
-    }
-}