Example #1
0
    public SHRLentity(APPshrl app, int x, int y)
    {
        this.app = app;
        this.x   = x;
        this.y   = y;

        id = app.GetId();
    }
Example #2
0
 public SHRLparticle(APPshrl app, int x, int y, string animation, string colors) : base(app, x, y)
 {
     this.animation = animation;
     this.colors    = colors;
 }
Example #3
0
 public SHRLgun(APPshrl app, int x, int y) : base(app, x, y)
 {
     pickable = true;
     color    = 'z';
 }
Example #4
0
 public SHRLenemy(APPshrl app, int x, int y) : base(app, x, y)
 {
     horizontalFirst = true;
 }
Example #5
0
 public SHRLitem(APPshrl app, int x, int y) : base(app, x, y)
 {
 }