Files
PyG2O/source/classes/squirrel/Way.h
2025-01-25 00:02:52 +03:00

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