mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-15 14:05:06 -05:00
14 lines
265 B
C++
14 lines
265 B
C++
|
#pragma once
|
||
|
|
||
|
#include "keys.hpp"
|
||
|
|
||
|
#include <vector>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
extern std::vector<uint32_t> StartingInventory;
|
||
|
extern uint8_t AdditionalHeartContainers;
|
||
|
|
||
|
void GenerateStartingInventory();
|
||
|
bool StartingInventoryHasBottle();
|
||
|
void ApplyStartingInventory();
|