Example #1
0
 public EntityType(Trajectory t, PhysicsShape physS, GraphicsStyle g, EntityClass pc, BulletEmitter e = null)
     : this(t, physS.MakeDrawable(g), physS, pc, e, g)
 {
 }
Example #2
0
 public Entity(double cTime, Particle pos, PhysicsShape physS, GraphicsStyle g, EntityClass pc, BulletEmitter e = null)
     : this(cTime, pos, physS.MakeDrawable(g), physS, pc, e, g)
 {
 }
Example #3
0
 public void MakeType(string name, Trajectory t, Drawable draw, PhysicsShape physS, EntityClass pc, BulletEmitter e = null, GraphicsStyle g = null)
 {
     this[name] = new EntityType(t, draw, physS, pc, e, g);
 }