コード例 #1
0
ファイル: Actor.cs プロジェクト: RichardBailey737/ZForm
 public Actor(IBodyProxy BodyProxyClass, ActorLocomotion LocomotionProxyClass, ISensoryProxy SensoryProxyClass, ActorStatistics StatsObject)
 {
     this.Statistics = StatsObject;
     this.SensoryPerception = new ActorSensoryPerception(this);
     this.Locomotion = LocomotionProxyClass;
     this.Body = new ActorBody(this, BodyProxyClass);
 }
コード例 #2
0
ファイル: ActorBody.cs プロジェクト: RichardBailey737/ZForm
 public ActorBody(Actor Parent, IBodyProxy Proxy)
 {
     this.BodyProxy = Proxy;
     this.ParentActor = Parent;
 }