porymap/asm.h
2016-09-29 02:35:29 -04:00

15 lines
206 B
C++
Executable file

#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