Skip to content

Instantly share code, notes, and snippets.

@kyrathasoft
Created August 14, 2022 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyrathasoft/bd085fe40554cdd144ec577f657c8031 to your computer and use it in GitHub Desktop.
Save kyrathasoft/bd085fe40554cdd144ec577f657c8031 to your computer and use it in GitHub Desktop.
declaring public constants
using System;
namespace EarthApotheosis {
public class EarthApotheosisConstants
{
public static string TITLE = Properties.Resources.Title;
public const int KILLS_TO_EARN_ONE_COMBAT_ADV_POINT = 50;
public const int MAX_CHARS_PER_LINE_IN_LABEL_DISPLAY = 80;
public const string INPUT_CURRENTLY_DISABLED = "Input currently disabled...";
public const string AVATAR_NAME_NEEDED = "Please specify avatar name...";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment