A WIP Roguelike game by Adekto, VonBednat, Trelemar and Wuuff made for CGAJam in spring 2017

Dependencies:   PokittoLib

Fork of Arcade by Pokitto Community Team

classes.cpp

Committer:
Pokitto
Date:
2018-05-21
Revision:
15:67fb7b0c1149
Parent:
10:590a26231903

File content as of revision 15:67fb7b0c1149:

//#include "sprites.h"
class Ent {
    public:
    int x,y;
    int id;
    Ent(int xx,int yy) {x=xx; y=yy;};
    void draw();
    Ent() {
        id=11;
        }
};


class Goblin : public Ent {
    public:

    int id;
    Goblin() {
        id=11;
        }
    
};