Mario Kart 64
Loading...
Searching...
No Matches
TrackPathPointFactory.h
Go to the documentation of this file.
1#pragma once
2
3#include "Resource.h"
4#include "ResourceFactoryBinary.h"
5#include "ResourceFactoryXML.h"
6
7namespace MK64 {
8class ResourceFactoryBinaryTrackPathPointsV0 : public Ship::ResourceFactoryBinary {
9 public:
10 std::shared_ptr<Ship::IResource> ReadResource(std::shared_ptr<Ship::File> file,
11 std::shared_ptr<Ship::ResourceInitData> initData) override;
12};
13
14class ResourceFactoryXMLTrackPathPointsV0 : public Ship::ResourceFactoryXML {
15 public:
16 std::shared_ptr<Ship::IResource> ReadResource(std::shared_ptr<Ship::File> file,
17 std::shared_ptr<Ship::ResourceInitData> initData) override;
18};
19
20} // namespace MK64
Definition TrackPathPointFactory.h:8
std::shared_ptr< Ship::IResource > ReadResource(std::shared_ptr< Ship::File > file, std::shared_ptr< Ship::ResourceInitData > initData) override
Definition TrackPathPointFactory.cpp:9
Definition TrackPathPointFactory.h:14
std::shared_ptr< Ship::IResource > ReadResource(std::shared_ptr< Ship::File > file, std::shared_ptr< Ship::ResourceInitData > initData) override
Definition TrackPathPointFactory.cpp:35
Definition ActorSpawnDataFactory.cpp:7