You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
622 B
C++
37 lines
622 B
C++
#ifndef OPENMW_COMPONENTS_ESM_TRANSPORT_H
|
|
#define OPENMW_COMPONENTS_ESM_TRANSPORT_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "defs.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
class ESMReader;
|
|
class ESMWriter;
|
|
|
|
/// List of travel service destination. Shared by CREA and NPC_ records.
|
|
struct Transport
|
|
{
|
|
|
|
struct Dest
|
|
{
|
|
Position mPos;
|
|
std::string mCellName;
|
|
};
|
|
|
|
std::vector<Dest> mList;
|
|
|
|
/// Load one destination, assumes the subrecord name was already read
|
|
void add(ESMReader &esm);
|
|
|
|
void save(ESMWriter &esm) const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|