mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-16 06:25:08 -05:00
11 lines
216 B
C
11 lines
216 B
C
|
#include "../CollisionHeader.h"
|
||
|
#include "Utils/BinaryReader.h"
|
||
|
|
||
|
namespace Ship
|
||
|
{
|
||
|
class CollisionHeaderFactory
|
||
|
{
|
||
|
public:
|
||
|
static CollisionHeader* ReadCollisionHeader(BinaryReader* reader);
|
||
|
};
|
||
|
}
|