- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptableFunctions.h
More file actions
Latest commit
27 lines (24 loc) · 649 Bytes
/
Copy pathScriptableFunctions.h
File metadata and controls
27 lines (24 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#pragma once
#include"Common.h"
/**
* \brief Contains the actual definitions of dynamic functions that can be scripted.
*/
classScriptableFunctions
{
public:
/**
* \brief Stub for simulating moving to a grid coordinate.
* \param args 2 integers, 1st = X coordinate, 2nd = Y coordinate.
*/
staticvoidMoveToXY(std::vector<std::string> args);
/**
* \brief Stub for simulating dialogue being printed.
* \param args 1 string of dialogue that should be displayed.
*/
staticvoidPrintDialogue(std::vector<std::string> args);
/**
* \brief
* \param args
*/
staticvoidSetDynamicVariable(std::vector<std::string> args);
};