un-cabrito

This commit is contained in:
2022-05-14 19:10:13 +03:00
parent 789b4bacec
commit 6a4ecfdf0b
28 changed files with 27 additions and 31 deletions

View File

@@ -1,6 +1,6 @@
using System;
namespace Cabrito
namespace Game
{
// Holds common miscellaneous Console variables and commands
public static class CommonCommands

View File

@@ -5,7 +5,7 @@ using System.Linq;
using System.Reflection;
using FlaxEditor;
namespace Cabrito
namespace Game
{
public class ConsoleLine
{

View File

@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;
namespace Cabrito
namespace Game
{
[AttributeUsage(AttributeTargets.All)]
public abstract class ConsoleBaseAttribute : Attribute

View File

@@ -1,7 +1,7 @@
using System;
using System.Reflection;
namespace Cabrito
namespace Game
{
internal struct ConsoleCommand
{

View File

@@ -6,7 +6,7 @@ using System.Text;
using FlaxEngine;
using FlaxEngine.GUI;
namespace Cabrito
namespace Game
{
public class ConsoleContentTextBox : Control
{

View File

@@ -2,7 +2,7 @@
using System.Linq;
using FlaxEngine;
namespace Cabrito
namespace Game
{
public class ConsoleInputTextBox : ConsoleTextBoxBase
{

View File

@@ -1,6 +1,6 @@
using System;
using FlaxEngine;
using Console = Cabrito.Console;
using Console = Game.Console;
#if FLAX_EDITOR
using FlaxEditor;
#endif

View File

@@ -6,7 +6,7 @@ using FlaxEngine.Assertions;
using FlaxEngine.GUI;
using Object = FlaxEngine.Object;
namespace Cabrito
namespace Game
{
public class ConsoleScript : Script
{

View File

@@ -2,7 +2,7 @@
using FlaxEngine;
using FlaxEngine.GUI;
namespace Cabrito
namespace Game
{
// Mostly based on TextBox
public class ConsoleTextBoxBase : TextBoxBase

View File

@@ -1,7 +1,7 @@
using System;
using System.Reflection;
namespace Cabrito
namespace Game
{
[Flags]
public enum ConsoleFlags

View File

@@ -2,7 +2,7 @@
using FidelityFX;
using FlaxEngine;
namespace Cabrito
namespace Game
{
// Holds Console variables and commands to control engine behaviour
public static class EngineSubsystem