11 lines
131 B
C++
11 lines
131 B
C++
#pragma once
|
|
|
|
namespace TLAC::Components
|
|
{
|
|
struct TargetState
|
|
{
|
|
int tgtType;
|
|
int tgtHitState;
|
|
float tgtRemainingTime;
|
|
};
|
|
} |