예제 #1
0
        public Isa Create(
            ImmutableList <IsaCrossJoinElement> value)
        {
            Isa crossJoin = null;

            try
            {
                crossJoin = new sa(
                    value);
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(crossJoin);
        }
예제 #2
0
 void Awake()
 {
     instance = this;
 }
예제 #3
0
파일: Monster.cs 프로젝트: ajb1996/Monsters
 public StatsManager(int a, int d, int s, int ac, int sa, int sd) => oBaseline = new StatsList(a, d, s, ac, sa, sd);