mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 23:31:13 -05:00
Intial Commit of Version 0.1
This commit is contained in:
18
Admin/Maps.cs
Normal file
18
Admin/Maps.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace IW4MAdmin
|
||||
{
|
||||
class Map
|
||||
{
|
||||
public Map(String N, String A)
|
||||
{
|
||||
Name = N;
|
||||
Alias = A;
|
||||
}
|
||||
|
||||
public String Name;
|
||||
public String Alias;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user