22 lines
388 B
C++
22 lines
388 B
C++
/////////////////////////////////////////////////////////////////////
|
|
// Created by Dan Andersson 2013
|
|
// to be removed
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
#ifndef OYSTER_GAME_GAMEOBJECT_H
|
|
#define OYSTER_GAME_GAMEOBJECT_H
|
|
|
|
#include "OysterMath.h"
|
|
|
|
namespace Oyster { namespace Game
|
|
{
|
|
class GameObject
|
|
{
|
|
public:
|
|
|
|
private:
|
|
};
|
|
} }
|
|
|
|
#endif |