mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
15 lines
235 B
C++
15 lines
235 B
C++
#ifndef TRADE_CENTER_H
|
|
#define TRADE_CENTER_H
|
|
|
|
#include "structure.h"
|
|
|
|
namespace battleship{
|
|
class TradeCenter : public Structure{
|
|
public:
|
|
TradeCenter(Player*, int, vb01::Vector3, vb01::Quaternion, int);
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|