2010-08-20 07:07:29 +00:00
|
|
|
|
|
|
|
#region ================== Copyright (c) 2007 Pascal vd Heiden
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
|
|
|
|
* This program is released under GNU General Public 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. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Namespaces
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.ZDoom
|
|
|
|
{
|
2017-01-16 08:20:47 +00:00
|
|
|
internal class StateGoto
|
2010-08-20 07:07:29 +00:00
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
2017-01-16 08:20:47 +00:00
|
|
|
internal string classname;
|
|
|
|
internal string statename;
|
|
|
|
internal int spriteoffset;
|
2010-08-20 07:07:29 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
public string ClassName { get { return classname; } }
|
|
|
|
public string StateName { get { return statename; } }
|
|
|
|
public int SpriteOffset { get { return spriteoffset; } }
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
|
|
|
// Constructor
|
2017-01-16 11:18:46 +00:00
|
|
|
internal StateGoto()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-16 08:20:47 +00:00
|
|
|
internal StateGoto(ActorStructure actor, ZDTextParser parser)
|
2010-08-20 07:07:29 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|