This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/pim/Types.h
2013-01-31 23:35:16 +00:00

13 lines
101 B
C++

#pragma once
namespace pim
{
struct DataType
{
public:
enum
{
Integer,
Float
};
};
}