Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | public class CommandExtensions
|
---|
4 | {
|
---|
5 | public static void InitCommandExtensions (GameManager manager)
|
---|
6 | {
|
---|
7 | manager.m_GUIConsole.AddCommand(new GetGamePrefs(manager.m_GUIConsole));
|
---|
8 | manager.m_GUIConsole.AddCommand(new GetTime(manager.m_GUIConsole));
|
---|
9 | manager.m_GUIConsole.AddCommand(new ListPlayersExtended(manager.m_GUIConsole));
|
---|
10 | manager.m_GUIConsole.AddCommand(new SayToPlayer(manager.m_GUIConsole));
|
---|
11 | manager.m_GUIConsole.AddCommand(new SetTimeReal(manager.m_GUIConsole));
|
---|
12 | manager.m_GUIConsole.AddCommand(new ShowInventory(manager.m_GUIConsole));
|
---|
13 | }
|
---|
14 | }
|
---|
15 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.