mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[apps/code] Use ScriptNode::Type in VariableBoxController
This commit is contained in:
@@ -8,9 +8,9 @@ namespace Code {
|
||||
|
||||
class ScriptNode {
|
||||
public:
|
||||
enum class Type {
|
||||
Function = 0,
|
||||
Variable = 1
|
||||
enum class Type : bool {
|
||||
Function,
|
||||
Variable
|
||||
};
|
||||
ScriptNode() :
|
||||
m_type(Type::Function), m_name(nullptr), m_scriptIndex(0), m_nameLength(0) {}
|
||||
|
||||
Reference in New Issue
Block a user