forked from akanyan/mu3-mods
9 lines
158 B
C#
9 lines
158 B
C#
using MU3.Util;
|
|
|
|
namespace MU3.Mod;
|
|
|
|
class State: Singleton<State> {
|
|
public bool SkipItemFrame { get; set; }
|
|
public bool SkipEntry { get; set; }
|
|
}
|