Skip to content

Commit

Permalink
revert typedef
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyano1337 committed Feb 28, 2025
1 parent f807909 commit 7426aad
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/sdk/common.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
#pragma once

typedef int8_t i8;
typedef int16_t i16;
typedef int32_t i32;
typedef int64_t i64;

typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;

typedef float f32;
typedef double f64;

#define CS_TEAM_NONE 0
#define CS_TEAM_SPECTATOR 1
#define CS_TEAM_T 2
Expand Down

0 comments on commit 7426aad

Please sign in to comment.