Skip to content

Commit

Permalink
Fix incorrectly used types
Browse files Browse the repository at this point in the history
  • Loading branch information
psiberx committed May 16, 2024
1 parent 40cbe8b commit 241d0b3
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
public native class gameuiarcadeRoachRaceObstacleController extends gameuiarcadeArcadeObjectController {
native let collider: gameuiarcadeBoundingRect;
}
public native class gameuiarcadeRoachRaceObstacleController extends gameuiarcadeArcadeObjectController {}
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
public native class gameuiarcadeRoachRacePlayerController extends inkLogicController {
native let collider: gameuiarcadeBoundingRect;
native let singleJumpBoost: Vector2;
native let doubleJumpBoost: Vector2;
native let gravity: Vector2;
Expand Down
2 changes: 0 additions & 2 deletions scripts/Base/Imports/navgendebugTileGenerationDebugData.reds
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
public native class navgendebugTileGenerationDebugData extends ISerializable {
native let tileIndex: Uint32;
native let heightfield: navgendebugHeightfield;
native let contours: navgendebugContourSet;
native let polyMesh: navgendebugPolyMesh;
}
2 changes: 1 addition & 1 deletion src/App/Project.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ constexpr auto Author = "psiberx";
constexpr auto NameW = L"Codeware";
constexpr auto AuthorW = L"psiberx";

constexpr auto Version = semver::from_string_noexcept("1.9.3").value();
constexpr auto Version = semver::from_string_noexcept("1.9.4").value();
}
8 changes: 4 additions & 4 deletions src/App/Version.rc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#define VER_PRODUCTVERSION 1,9,3,0
#define VER_FILEVERSION 1,9,3,2405151847
#define VER_PRODUCTVERSION 1,9,4,0
#define VER_FILEVERSION 1,9,4,2405161113

#define VER_PRODUCTNAME_STR "Codeware\0"
#define VER_PRODUCTVERSION_STR "1.9.3\0"
#define VER_FILEVERSION_STR "1.9.3.2405151847\0"
#define VER_PRODUCTVERSION_STR "1.9.4\0"
#define VER_FILEVERSION_STR "1.9.4.2405161113\0"

1 VERSIONINFO
FILEVERSION VER_FILEVERSION
Expand Down
2 changes: 1 addition & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
set_xmakever("2.5.9")

set_project("Codeware")
set_version("1.9.3", {build = "%y%m%d%H%M"})
set_version("1.9.4", {build = "%y%m%d%H%M"})

set_arch("x64")
set_languages("cxx2a")
Expand Down

0 comments on commit 241d0b3

Please sign in to comment.