mirror of
https://github.com/Ratstail91/Mementos.git
synced 2025-11-29 02:24:28 +11:00
14 lines
186 B
C#
14 lines
186 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ink.Runtime
|
|
{
|
|
public enum PushPopType
|
|
{
|
|
Tunnel,
|
|
Function,
|
|
FunctionEvaluationFromGame
|
|
}
|
|
}
|
|
|