mirror of
https://github.com/vlang/v.git
synced 2025-09-15 23:42:28 +03:00
11 lines
618 B
Markdown
11 lines
618 B
Markdown
# Asset
|
|
|
|
The `asset` module provides a cross platform way to read assets, without cluttering
|
|
the user code with comptime conditionals, like `$if ios {` or `$if android {` etc.
|
|
|
|
Currently it supports Android assets, and desktop applications, that do not use
|
|
archived/zipped files, but could be extended to support archived files too in the future.
|
|
|
|
It relies on the assumption that each platform has a way to either read files, relative
|
|
to the location of the executable, or a platform specific way, to package all asset files
|
|
into the application archive/package/executable, that is then distributed to the end users.
|