From 52319229783e115545360dd519d7b0868c641c4e Mon Sep 17 00:00:00 2001 From: Ebise Lutica <7106976+EbiseLutica@users.noreply.github.com> Date: Tue, 6 Feb 2024 17:59:08 +0900 Subject: [PATCH] 0.5.0 --- LICENSE | 2 +- Promete/Promete.csproj | 6 +++--- README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index adb3b6b..f9f0e3e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2024 Ebise Lutica +Copyright (c) 2024 Promete Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Promete/Promete.csproj b/Promete/Promete.csproj index c934617..786002f 100644 --- a/Promete/Promete.csproj +++ b/Promete/Promete.csproj @@ -10,15 +10,15 @@ Promete - 0.4.0 + 0.5.0 Game Engine;2D;gamedev;games;gaming;windowing;OpenGL A lightweight, extensible and easy game engine. Ebise Lutica - (C)2024 Ebise Lutica + (C)2024 Promete Developers MIT - https://github.com/EbiseLutica/Promete + https://github.com/prometeapp/Promete false diff --git a/README.md b/README.md index 9f129b5..9f6c797 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ var app = PrometeApp.Create() app.Run(); -public class MainScene(IWindow window, Keyboard keyboard) +public class MainScene(Keyboard keyboard) { private ITexture texture1; private ITexture texture2; @@ -45,7 +45,7 @@ public class MainScene(IWindow window, Keyboard keyboard) { if (keyboard.Escape.IsKeyDown) { - window.Close(); + Window.Close(); } } }