This repository has been archived on 2025-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rc2007-soccer/source/Concept/Framework/engine.h
sicarius 7370f9ab1e updated todo.txt;
added some files as .pdf, too
2007-02-04 21:38:03 +00:00

19 lines
206 B
C++

#ifndef _ENGINE_H
#define _ENGINE_H
#include "stdafx.h"
class Engine : public IO_Module
{
public:
Engine()
{
}
Engine(uint32 engineId)
{
this->moduleId = engineId;
}
};
#endif