Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EbiseLutica committed Feb 6, 2024
1 parent fd31667 commit 5231922
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions Promete/Promete.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

<PropertyGroup>
<PackageId>Promete</PackageId>
<VersionPrefix>0.4.0</VersionPrefix>
<VersionPrefix>0.5.0</VersionPrefix>
<PackageTags>Game Engine;2D;gamedev;games;gaming;windowing;OpenGL</PackageTags>
<Description>
A lightweight, extensible and easy game engine.
</Description>
<Authors>Ebise Lutica</Authors>
<Copyright>(C)2024 Ebise Lutica</Copyright>
<Copyright>(C)2024 Promete Developers</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/EbiseLutica/Promete</PackageProjectUrl>
<PackageProjectUrl>https://github.com/prometeapp/Promete</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var app = PrometeApp.Create()

app.Run<MainScene>();

public class MainScene(IWindow window, Keyboard keyboard)
public class MainScene(Keyboard keyboard)
{
private ITexture texture1;
private ITexture texture2;
Expand All @@ -45,7 +45,7 @@ public class MainScene(IWindow window, Keyboard keyboard)
{
if (keyboard.Escape.IsKeyDown)
{
window.Close();
Window.Close();
}
}
}
Expand Down

0 comments on commit 5231922

Please sign in to comment.