[saco] Add CAudio class

This commit is contained in:
RD42 2023-10-23 22:49:21 +08:00
parent c9701b9174
commit 20d22b68be
2 changed files with 15 additions and 0 deletions

0
saco/game/audio.cpp Normal file
View File

15
saco/game/audio.h Normal file
View File

@ -0,0 +1,15 @@
#pragma once
class CAudio // size: 5
{
public:
int field_0;
char field_4;
CAudio() {
// TODO: CAudio::CAudio()
field_0 = 0;
field_4 = 0;
}
};