Browse Source

Started work on for loops

Josh_Dev_branch
Joshua Reason 5 years ago
parent
commit
874ff5f596
2 changed files with 26 additions and 0 deletions
  1. +15
    -0
      Assets/Scripts/Logic/Blocks/CombinedBlock.cs
  2. +11
    -0
      Assets/Scripts/Logic/Blocks/CombinedBlock.cs.meta

+ 15
- 0
Assets/Scripts/Logic/Blocks/CombinedBlock.cs View File

@ -0,0 +1,15 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CombinedBlock : LogicBlock
{
[SerializeField]
protected List<LogicBlock> SubBlocks ;
protected override void BlockLogic(Character player)
{
throw new System.NotImplementedException();
}
}

+ 11
- 0
Assets/Scripts/Logic/Blocks/CombinedBlock.cs.meta View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 379f4aef4fda0734390b1831e4b71226
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

Loading…
Cancel
Save