mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
19 lines
273 B
C++
19 lines
273 B
C++
#ifndef UNIT_FACTORY_H
|
|
#define UNIT_FACTORY_H
|
|
|
|
#include <vector.h>
|
|
#include <quaternion.h>
|
|
|
|
namespace battleship{
|
|
class Unit;
|
|
class Player;
|
|
|
|
class UnitFactory{
|
|
public:
|
|
static Unit* createUnit(Player*, int, vb01::Vector3, vb01::Quaternion);
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|