mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-05-31 09:01:22 +00:00
lots of changes/additions
This commit is contained in:
parent
3cc6e82fe8
commit
4cf0f18dbb
28 changed files with 1352 additions and 41 deletions
36
Source/Map/SidedefPart.cs
Normal file
36
Source/Map/SidedefPart.cs
Normal file
|
@ -0,0 +1,36 @@
|
|||
|
||||
#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
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.Text;
|
||||
|
||||
#endregion
|
||||
|
||||
namespace CodeImp.DoomBuilder.Map
|
||||
{
|
||||
public enum SidedefPart
|
||||
{
|
||||
None = 0,
|
||||
Upper = 1,
|
||||
Middle = 2,
|
||||
Lower = 3
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue