Added missing summeries #1
This commit is contained in:
parent
03d99ea28e
commit
8665b5b709
104 changed files with 1165 additions and 821 deletions
|
|
@ -1,11 +1,14 @@
|
|||
using System;
|
||||
#region usings
|
||||
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using OpenTK;
|
||||
using SM.Base.Controls;
|
||||
using SM.Base.Scene;
|
||||
using SM.OGL.Framebuffer;
|
||||
|
||||
namespace SM.Base.Windows
|
||||
#endregion
|
||||
|
||||
namespace SM.Base.Window
|
||||
{
|
||||
public interface IGenericWindow : IFramebufferWindow
|
||||
{
|
||||
|
|
@ -26,12 +29,12 @@ namespace SM.Base.Windows
|
|||
|
||||
ISetup AppliedSetup { get; }
|
||||
|
||||
event Action<IGenericWindow> Resize;
|
||||
event Action<IGenericWindow> Load;
|
||||
|
||||
GenericScene CurrentScene { get; }
|
||||
RenderPipeline CurrentRenderPipeline { get; }
|
||||
|
||||
event Action<IGenericWindow> Resize;
|
||||
event Action<IGenericWindow> Load;
|
||||
|
||||
void Update(UpdateContext context);
|
||||
|
||||
void ApplySetup(ISetup setup);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue