10 lines
300 B
TypeScript
10 lines
300 B
TypeScript
// Copyright (c) 2021 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
declare function assetShaderLoad(
|
|
shader:Shader, fileVertex:string, fileFrag:string
|
|
):void;
|
|
|
|
declare function assetTextureLoad(shader:Shader, texture:Texture):void; |