You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
317 B
27 lines
317 B
10 years ago
|
using UnityEngine;
|
||
|
using System;
|
||
|
using System.Collections;
|
||
|
|
||
|
namespace Fungus.Script
|
||
|
{
|
||
10 years ago
|
public enum VariableType
|
||
|
{
|
||
|
Boolean,
|
||
|
Integer,
|
||
|
Float,
|
||
|
String
|
||
|
}
|
||
|
|
||
10 years ago
|
public enum VariableScope
|
||
|
{
|
||
|
Local,
|
||
|
Global
|
||
10 years ago
|
}
|
||
|
|
||
10 years ago
|
public class Variable : MonoBehaviour
|
||
10 years ago
|
{
|
||
|
public VariableScope scope;
|
||
10 years ago
|
public string key = "";
|
||
10 years ago
|
}
|
||
|
}
|