25 lines
374 B
C++
25 lines
374 B
C++
#ifndef _WAY_H
|
|
#define _WAY_H
|
|
#include <string>
|
|
|
|
#include <Class.h>
|
|
#include <CustomTypes.h>
|
|
|
|
namespace nonut
|
|
{
|
|
class Way : public Class
|
|
{
|
|
public:
|
|
Way(String, String, String);
|
|
explicit Way(SQObject object);
|
|
|
|
Property<String> start;
|
|
Property<String> end;
|
|
|
|
Function<SqList> getWaypoints;
|
|
Function<Int> getCountWaypoints;
|
|
};
|
|
}
|
|
#endif
|
|
|