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

33 lines
743 B
C#

/*
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>
*/
using System;
namespace Tester
{
public class Consts
{
public Consts ()
{
}
public const int Enuma = 2;
public const int Enumb = 44;
}
}