some old local changes

This commit is contained in:
i.korystin
2019-08-04 00:45:18 +03:00
parent 70a767cf09
commit 1c1dd5cab6
48 changed files with 1017 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
using UnityEngine;
using System.Collections.Generic;
using System.Collections;
namespace coa4u
{
public class State
{
public readonly ActionInstant action;
public readonly Predicate trigger;
public readonly string name;
public State(ActionInstant targetAction, string targetName = "")
{
action = targetAction;
name = targetName;
}
public State(Predicate targetTrigger, ActionInstant targetAction, string targetName = "")
{
trigger = targetTrigger;
action = targetAction;
name = targetName;
}
}
}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ebc37cf537501dd4f9290a911cb5b757
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData: