Skip to content

Commit

Permalink
Merge pull request sbarisic#27 from b-effort/master
Browse files Browse the repository at this point in the history
Make Render and HandleInput public
  • Loading branch information
sbarisic authored Sep 24, 2023
2 parents 57e819d + 8242e6e commit 6330482
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NuklearDotNet/NuklearAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static void FontStash(FontStashAction A = null) {
}


static bool HandleInput() {
public static bool HandleInput() {
bool HasInput = FrameBuffered == null || Dev.Events.Count > 0;

if (HasInput) {
Expand Down Expand Up @@ -146,7 +146,7 @@ static bool HandleInput() {
return HasInput;
}

static void Render(bool HadInput) {
public static void Render(bool HadInput) {
if (HadInput) {
bool Dirty = true;

Expand Down

0 comments on commit 6330482

Please sign in to comment.