Handle (embedded)textures

This commit is contained in:
bloeys
2021-11-19 21:05:21 +04:00
parent 3b31e8d677
commit 4462a3be04
5 changed files with 163 additions and 27 deletions

View File

@ -1,5 +1,18 @@
package asig
type aiReturn int32
const (
//Indicates that a function was successful
aiReturnSuccess = 0x0
//Indicates that a function failed
aiReturnFailure = -0x1
//Indicates that not enough memory was available to perform the requested operation
aiReturnOutofMemory = -0x3
)
type SceneFlag int32
const (