mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-23 09:43:24 +03:00
12 lines
131 B
C
12 lines
131 B
C
|
#ifndef IINTERFACE_H
|
||
|
#define IINTERFACE_H
|
||
|
|
||
|
#include "common.h"
|
||
|
|
||
|
class IInterface {
|
||
|
public:
|
||
|
virtual ~IInterface() { }
|
||
|
};
|
||
|
|
||
|
#endif
|