summaryrefslogtreecommitdiffhomepage
path: root/src/entity-type.hpp
blob: 079cec773efacb9a1d4641a419674ba15d3b6692 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include <cstdint>

namespace floormat {

enum class entity_type : std::uint8_t {
    none, character, scenery,
};

} // namespace floormat