1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

33 lines
743 B
C#
Raw Permalink Normal View History

/*
Copyright 2010-2013 Kevin Glynn (kevin.glynn@twigletsoftware.com)
Copyright 2007-2013 Rustici Software, LLC
This program is free software: you can redistribute it and/or modify
it under the terms of the MIT/X Window System License
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
You should have received a copy of the MIT/X Window System License
along with this program. If not, see
<http://www.opensource.org/licenses/mit-license>
*/
2011-06-14 09:34:18 +02:00
using System;
namespace Tester
{
public class Consts
{
public Consts ()
{
}
2011-07-12 15:18:19 +02:00
public const int Enuma = 2;
public const int Enumb = 44;
2011-06-14 09:34:18 +02:00
}
}