20 lines
226 B
C++
20 lines
226 B
C++
#ifndef OBJECT_H
|
|
#define OBJECT_H
|
|
|
|
#include "pch.hpp"
|
|
|
|
namespace Archimedes {
|
|
|
|
class Object {
|
|
|
|
public:
|
|
Object() {};
|
|
~Object() {};
|
|
|
|
private:
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|