Skip to content

Commit 896111a

Browse files
committed
api 33
1 parent 628f935 commit 896111a

File tree

6 files changed

+218
-70
lines changed

6 files changed

+218
-70
lines changed

c/uwapi/uwapi/modules/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extern "C"
3434
typedef uint64_t uint64;
3535
typedef int64_t sint64;
3636

37-
static const uint32 UW_VERSION = 32;
37+
static const uint32 UW_VERSION = 33;
3838
static const uint32 UW_GameTicksPerSecond = 20;
3939

4040
typedef struct UwIds

c/uwapi/uwapi/modules/map.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ extern "C"
3939
typedef struct UwMapStartingPosition
4040
{
4141
uint32 position;
42+
uint32 minForces;
43+
uint32 maxForces;
4244
} UwMapStartingPosition;
4345
typedef struct UwMapStartingPositionsArray
4446
{

csharp/uwapi/entity.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ public partial class Entity
1111

1212
public bool Destroyed = false;
1313

14+
public bool Fresh = true;
15+
1416
public Entity(uint id) { Id = id; }
1517

1618
public uint Pos => Position.HasValue ? Position.Value.position : Invalid;

0 commit comments

Comments
 (0)