/* * Copyright (c) 2013 Jayce Rettob * * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/3.0/. */ namespace com.jbrettob.data.enums { /// /// Project, where you can set the Project name, version and is a live build. /// public class Project { public const string NAME = "Living Lab Korea"; public const string VERSION = "0.00.024"; public const bool IS_LIVE = false; // public const float SCREEN_WIDTH = 1920; public const float SCREEN_HEIGHT = 1080; } }