Files
GoakeFlax/Source/Game/Console/Config.cs
2024-04-06 16:53:29 +03:00

30 lines
754 B
C#

using System;
using System.Collections.Generic;
namespace Game;
public class Config
{
private Dictionary<string, string> dictionary = new Dictionary<string, string>();
public string this[string key]
{
get => dictionary[key];
set => dictionary[key] = value;
}
// TODO: This is for debugging only, remove this later
public string[] Commands = Array.Empty<string>();
public string[] GetLines()
{
string[] lines = new string[dictionary.Count + Commands.Length];
int lineIndex = 0;
foreach (var kvp in dictionary)
lines[lineIndex++] = $"{kvp.Key} {kvp.Value}";
foreach (var cmd in Commands)
lines[lineIndex++] = cmd;
return lines;
}
}