porymap/asm.h

16 lines
206 B
C
Raw Normal View History

2016-09-07 04:50:47 +01:00
#ifndef ASM_H
#define ASM_H
#include <QString>
#include <QList>
class Asm
{
public:
Asm();
void strip_comment(QString*);
QList<QStringList>* parse(QString);
};
#endif // ASM_H