File size: 283 Bytes
4b9fefd
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
// test_engine_smoke.cpp — just verify engine.h compiles and links.
#include "engine.h"

int main() {
    // No-op — all engine functions take many parameters and need real runtime. This test
    // only validates that the header compiles and the core lib links.
    return 0;
}