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
-    ) {
-    }
-}