mirror of
https://github.com/AxioDL/boo.git
synced 2025-05-17 12:51:25 +00:00
13 lines
129 B
C++
13 lines
129 B
C++
#ifndef ICONTEXT_HPP
|
|
#define ICONTEXT_HPP
|
|
|
|
|
|
class IContext
|
|
{
|
|
public:
|
|
IContext();
|
|
~IContext();
|
|
};
|
|
|
|
#endif // ICONTEXT_HPP
|