Advertisement
Pro_Unit

ACondition

Apr 5th, 2019
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.16 KB | None | 0 0
  1. using UnityEngine;
  2.  
  3. namespace GameCore
  4. {
  5.     public abstract class ACondition : ScriptableObject
  6.     {
  7.         public abstract bool Value { get; }
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement