Azriel
Member
|
[solved] Storing UID for future use
It's me again
Code:
class A
{
soundId; //(what type to use?)
void setSoundId(const UID & id)
{
soundId=id;
}
void playSound()
{
SoundPlay(soundId);
}
}
That's more or less what I want to achieve. Could someone help me with this?
(This post was last modified: 11-19-2015 09:33 AM by Azriel.)
|
|
11-18-2015 02:07 PM |
|
Tottel
Member
|
RE: Storing UID for future use
Type: UID?
|
|
11-18-2015 05:12 PM |
|
Azriel
Member
|
RE: Storing UID for future use
So there's no need for pointers and stuff like that?
|
|
11-18-2015 08:37 PM |
|
Esenthel
Administrator
|
RE: Storing UID for future use
Please use UID, it's the way to go.
|
|
11-18-2015 10:38 PM |
|