This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rc2007-soccer/source/Concept/engine.h
2007-01-14 18:07:03 +00:00

19 lines
No EOL
205 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