mirror of
https://github.com/debauchee/barrier.git
synced 2025-10-26 11:17:49 +00:00
12 lines
129 B
C++
12 lines
129 B
C++
#ifndef IINTERFACE_H
|
|
#define IINTERFACE_H
|
|
|
|
#include "common.h"
|
|
|
|
class IInterface {
|
|
public:
|
|
virtual ~IInterface() { }
|
|
};
|
|
|
|
#endif
|