Browse Source

Not a good idea

David Catuhe 5 năm trước cách đây
mục cha
commit
76141a214c
1 tập tin đã thay đổi với 0 bổ sung18 xóa
  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
-    ) {
-    }
-}