mirror of
https://github.com/open-goal/jak-project
synced 2026-09-12 12:55:22 -04:00
7 lines
162 B
C++
7 lines
162 B
C++
#include "GoalPlace.h"
|
|
|
|
static std::shared_ptr<Place> none = std::make_shared<NonePlace>(TypeSpec(nullptr));
|
|
|
|
std::shared_ptr<Place> get_none() {
|
|
return none;
|
|
} |