-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBingoSettings.cs
More file actions
31 lines (29 loc) · 955 Bytes
/
BingoSettings.cs
File metadata and controls
31 lines (29 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*
* TRBotBingo
*/
using System;
using System.IO;
using System.IO.Pipes;
using System.Threading;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Newtonsoft.Json;
namespace TRBotBingo
{
public class BingoSettings
{
public int BingoColumns = 5;
public int BingoRows = 5;
public Vector2 BingoBoardCellSize = Vector2.Zero;
public Vector2 BingoBoardPosOffset = Vector2.Zero;
public Vector2 BingoBoardSpacing = Vector2.Zero;
public string BingoPipeFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "BingoPipe");
public Vector2? WindowSize = null;
public double FPS = 15d;
}
}