11 lines
282 B
C#
11 lines
282 B
C#
using Syntriax.Engine.Core;
|
|
using Syntriax.Engine.Core.Serialization;
|
|
|
|
namespace Syntriax.Engine.Integration.MonoGame;
|
|
|
|
[IgnoreSerialization]
|
|
public class MonoGameWindowContainer(MonoGameWindow GameWindow) : BehaviourBase
|
|
{
|
|
public MonoGameWindow Window { get; } = GameWindow;
|
|
}
|