示例#1
0
文件: GWait.cs 项目: Bgoon/GKit
 public GWait(GTimeUnit unit, int frame)
 {
     this.unit = unit;
     this.time = frame + 0.00001f;
 }
示例#2
0
文件: GWait.cs 项目: Bgoon/GKit
 public GWait(GTimeUnit unit, float time)
 {
     this.unit = unit;
     this.time = time;
 }