17 lines
352 B
C#
17 lines
352 B
C#
using System.Collections.Generic;
|
|
using SGModule.ConfigLoader;
|
|
|
|
namespace IgnoreOPS
|
|
{
|
|
[ConfigKey("ArrowGameConfig")]
|
|
public class ArrowGameConfig
|
|
{
|
|
public int id;
|
|
public string levelName;
|
|
public int gridRows;
|
|
public int gridCols;
|
|
public int pointSpacing;
|
|
public string arrows;
|
|
}
|
|
|
|
} |