예제 #1
0
파일: RTSUnitAI.cs 프로젝트: whztt07/SDK
 public Task( Types type, Dynamic entity )
 {
     this.type = type;
     this.position = new Vec3( float.NaN, float.NaN, float.NaN );
     this.entityType = null;
     this.entity = entity;
 }
예제 #2
0
파일: RTSUnitAI.cs 프로젝트: whztt07/SDK
 public Task( Types type, Vec3 position )
 {
     this.type = type;
     this.position = position;
     this.entityType = null;
     this.entity = null;
 }
예제 #3
0
파일: RTSUnitAI.cs 프로젝트: whztt07/SDK
 public Task( Types type, Vec3 position, DynamicType entityType )
 {
     this.type = type;
     this.position = position;
     this.entityType = entityType;
     this.entity = null;
 }
예제 #4
0
파일: RTSUnitAI.cs 프로젝트: whztt07/SDK
 public Task( Types type )
 {
     this.type = type;
     this.position = new Vec3( float.NaN, float.NaN, float.NaN );
     this.entityType = null;
     this.entity = null;
 }