Skip to main content

Types

Data types are unique to the Polytoria Engine. They contain constructors, properties and methods of a custom type.

This section contains all the types inside of Polytoria.

Example

To send create a network event, you need a NetMessage

local response = NetMessage.New()
response:AddBool("success", success)
response:AddString("message", "Hello!")