add extratools.h

This commit is contained in:
2026-02-07 12:43:10 -06:00
parent 98f990cb57
commit e7544e1cc1
3 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
#ifndef OBJECT_H
#define OBJECT_H
#include "pch.hpp"
namespace Archimedes {
class Object {
public:
Object() {};
~Object() {};
private:
};
}
#endif